@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@1,300&family=Poppins:wght@300&family=Ubuntu:wght@500&display=swap");

:root {
  --primary-color: #f34e3a;
  --secondary-color: #29282d;
  --tri-color: #9c9c9c;
  --lamp-black: #231f20;
}
/* BASE STYLING */

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: Montserrat;
}

a {
  text-decoration: none;
  color: #000;
}

/* NAVBAR */
.page-navbar {
  background-color: var(--secondary-color);
  padding: 20px;
  box-shadow: 2px rgba(0, 0, 0, 0.2);
}

.navbar-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-item {
  color: white;
  margin: 10px 15px;
}

.navbar-item:hover {
  border-bottom: 1px solid var(--tri-color);
  transition: 500ms all;
}

.brand-logo {
  color: var(--primary-color);
  font-family: Ubuntu;
  font-size: 1.6em;
}

.navbar-trigger {
  color: white;
  display: none;
}

/* SideNav */
.sidenav-items {
  width: 0;
  height: 100vh;
  position: fixed;
  left: -100vh;
  top: 0;
  background-color: var(--lamp-black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: all 500ms;
}

.sidenav-item:hover {
  background-color: #fff;
  transition: all 500ms;
}

.close-btn {
  color: var(--primary-color);
  font-size: 1.8em;
  transition: all 500ms;
  padding: 10px;
}

.sidenav-item {
  color: var(--tri-color);
  margin: 15px 0px;
  padding: 10px;
  transition: all 500ms;
}

.close-btn:hover {
  background-color: #fff;
  transition: all 500ms;
}

/* FOOTER */
footer {
  background-color: var(--primary-color);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-info {
  font-weight: bold;
  font-family: Poppins;
  color: white;
}

.footer-social-icon {
  color: white;
  background-color: var(--secondary-color);
  padding: 20px;
  border-radius: 50%;
  margin: 0px 10px;
  font-size: 1.5em;
  transition: all 500ms;
}

.footer-social-icon:hover {
  transition: all 500ms;
  color: var(--secondary-color);
  background-color: white;
}

/* CONTACT US SECTION */
.contact-us-map {
  width: 500px;
  height: 500px;
  background-color: #f4f4f4;
}

.contact-items {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 50px;
}

.contact-us-items {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: var(--tri-color);
  margin: 20px;
  padding: 30px;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.contact-us-section {
  background-color: var(--lamp-black);
  padding: 30px;
}

.contact-us-title {
  font-family: Poppins;
  font-weight: bold;
  font-size: 1.2em;
}

.contact-item-list {
  list-style: none;
  line-height: 1.6em;
}

/* MEDIA QURIES */
@media (min-width: 1px) and (max-width: 750px) {
  .navbar-links {
    display: none;
  }

  .navbar-trigger {
    display: inline-flex;
  }

  footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    gap: 20px;
  }

  .brand-logo {
    font-size: 1.2em;
  }

  .contact-us-items {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
  }
}

@media (min-width: 1px) and (max-width: 750px) {
  .contact-us-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .contact-us-map {
    width: 100%;
  }

  .contact-items {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
